        /* Estilos específicos para la página "Sobre Nosotros" */
        .about-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 30px;
            line-height: 1.8;
            background-color: #ffffff;
            border: 1px solid #e9e9e9;
            border-radius: 8px;
            color: #333;
        }
        .about-container h1, .about-container h2 {
            color: #1a1a1a;
            border-bottom: 2px solid #007bff;
            padding-bottom: 10px;
            margin-top: 30px;
        }
        .tagline {
            font-size: 1.2em;
            font-style: italic;
            color: #555;
            text-align: center;
            margin: 20px 0 40px 0;
        }
        .team-section {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .team-member {
            flex-basis: 250px;
            text-align: center;
        }
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ddd;
        }
        .team-member h3 {
            margin-top: 15px;
            margin-bottom: 5px;
            color: #007bff;
        }
        .team-member p {
            font-size: 0.9em;
            color: #666;
        }